home *** CD-ROM | disk | FTP | other *** search
/ X'Tasies 5 / X'Tasies 5 - Disc 1.iso / mac / Main.Dir / 00102.ls < prev    next >
Encoding:
Text File  |  1996-09-02  |  959 b   |  46 lines

  1. on enterFrame
  2.   if not rollOver(the clickOn + 1) then
  3.     set the visible of sprite (the clickOn + 1) to 1
  4.     updateStage()
  5.   end if
  6.   repeat with i = 7 down to 0
  7.     set the visible of sprite (41 + i) to 0
  8.   end repeat
  9.   if rollOver(3) then
  10.     set the visible of sprite 41 to 1
  11.     updateStage()
  12.   end if
  13.   if rollOver(5) then
  14.     set the visible of sprite 42 to 1
  15.     updateStage()
  16.   end if
  17.   if rollOver(7) then
  18.     set the visible of sprite 43 to 1
  19.     updateStage()
  20.   end if
  21.   if rollOver(9) then
  22.     set the visible of sprite 44 to 1
  23.     updateStage()
  24.   end if
  25.   if rollOver(11) then
  26.     set the visible of sprite 45 to 1
  27.     updateStage()
  28.   end if
  29.   if rollOver(13) then
  30.     set the visible of sprite 46 to 1
  31.     updateStage()
  32.   end if
  33.   if rollOver(15) then
  34.     set the visible of sprite 47 to 1
  35.     updateStage()
  36.   end if
  37.   if rollOver(17) then
  38.     set the visible of sprite 48 to 1
  39.     updateStage()
  40.   end if
  41. end
  42.  
  43. on exitFrame
  44.   go(the frame)
  45. end
  46.